Batch Runner Pro Test Suite

These applications do nothing except exit with the exit code specified, 0, 1, -1, etc. These are handy if you are setting up your Batch Runner colors and more. Some will also sleep for a half second is you want to see the "in progress" color or just a more realistic pace.

Note: The RANDOM variants can exit with *any* of the above codes but are weighted to usually give a positive (fail) result, succeed sometimes, and fatally fail once in a while. Simple like this (C++)..

	#include <windows.h>
	#include <ctime>

	using namespace std;

	int main()
	{
		int  rNUM;
		srand (time(NULL));
		rNUM = ( rand() % 5 ) - 1;

		Sleep(500);
		return rNUM;
	}


;o) Cor
